home *** CD-ROM | disk | FTP | other *** search
/ Aminet 1 (Walnut Creek) / Aminet - June 1993 [Walnut Creek].iso / usenet / sources / volume2 / fun / hacktut.1 < prev    next >
Internet Message Format  |  1988-12-30  |  94KB

  1. Path: xanth!nic.MR.NET!csd4.milw.wisc.edu!mailrus!ulowell!page
  2. From: page@swan.ulowell.edu (Bob Page)
  3. Newsgroups: comp.sources.amiga
  4. Subject: v02i110:  hacktut - hack & nethack tutorial
  5. Message-ID: <11027@swan.ulowell.edu>
  6. Date: 30 Dec 88 17:58:57 GMT
  7. Organization: University of Lowell, Computer Science Dept.
  8. Lines: 2209
  9. Approved: page@swan.ulowell.edu
  10.  
  11. Submitted-by: kim@uts.amdahl.com (Kim E. DeVaughn)
  12. Posting-number: Volume 2, Issue 110
  13. Archive-name: fun/hacktut.1
  14.  
  15. [not really source I suppose, but certainly not binary.  ..Bob]
  16.  
  17. #    This is a shell archive.
  18. #    Remove everything above and including the cut line.
  19. #    Then run the rest of the file through sh.
  20. #----cut here-----cut here-----cut here-----cut here----#
  21. #!/bin/sh
  22. # shar:    Shell Archiver
  23. #    Run the following text with /bin/sh to create:
  24. #    Hack.Tutorial
  25. # This archive created: Fri Dec 30 12:55:50 1988
  26. cat << \SHAR_EOF > Hack.Tutorial
  27.  
  28.  
  29.             An introduction to the wonderful world of
  30.                              HACK
  31.  
  32.  
  33.             Written by Douglas Rosengard
  34.             with contributions from
  35.             Erik Lauer.
  36.  
  37.             Edited into human-readable form
  38.             by Pete Granger
  39.  
  40. [When I received this, it was suffering badly from line-wraps, misplaced
  41.  tabs, typos, bad grammar, misspellings, etc. I have now cleaned up as much
  42.  as I can of it. It's not perfect, but it's better. Although I have edited
  43.  the context freely, the content as originally posted is unchanged, with
  44.  the exception of one place which contained data which I know to be
  45.  incorrect for all versions: It was stated that nothing bad would happen
  46.  if you prayed at the wrong time. This has been corrected. I have also
  47.  added some new data to reflect changes in the latest release of NetHack.
  48.  Any other comments of my own are in brackets, like this, with my
  49.  initials, like this.  -PG ]
  50.  
  51.  
  52. CHAPTER 1: What is Hack?
  53.  
  54. "Toto, I don't think we're in Kansas anymore."
  55.                                         - Dorothy
  56.  
  57.   Hack is a single-player, interactive fantasy game in which you play a
  58. mighty hero, determined to recover the powerful Amulet of Yendor. This task 
  59. will not be easy, however. During your quest, you will journey deep into the
  60. earth, battle strange and ferocious creatures, be blinded, confused and 
  61. encounter deadly traps. And, perhaps worst of all, you will slowly starve.
  62.   Have no fear, however. Although an unending horde may assail you, and
  63. you are a weakling at the start of your trek, you have the potential to far
  64. surpass all of your mightiest enemies. As you defeat your foes, you will
  65. become more powerful, learn how to fight better, and increase your stamina.
  66. You will also find many items, some ordinary, while others have great powers. 
  67.   In addition, you are not quite alone. You will find shops which can sell
  68. you useful items. And what fool would adventure without a faithful watchdog 
  69. beside him. But beware! The gods frown upon those who turn against their 
  70. allies.
  71.  
  72.   Here begins your journey into a new and exciting world...
  73.   the world of HACK.
  74.  
  75.  
  76. CHAPTER 2: A brief introduction to the game of Hack.
  77.  
  78.   The first step is to run the game itself. Type hack (or whatever the 
  79. name of your version is), and press return. The first thing which will happen
  80. is that it will welcome you to the game, and ask you what type of character 
  81. you wish to play. For now, we will play a Caveman. Type "c" to indicate this
  82. to the program.
  83.   After a few moments, the game will start. You will see something like this:
  84.  
  85. Your Command ?
  86.  
  87.     -------
  88.     |.....|
  89.     |...@.|
  90.     +.d...|
  91.     |.....|
  92.     |.....+
  93.     ----+--
  94.  
  95.  
  96.   AC 7   Str 18  Hp 12(12)  Exp : 0  Level : 1
  97.  
  98.   You are the "@" symbol. What you see is a single room in the Dungeon
  99. of Doom. The dungeon is divided into many "levels." Most levels consist of
  100. up to nine rooms connected by a twisting passageways.
  101.   The "." are simply empty places on the floor of the room. The "-" and
  102. "|" symbols are the walls of the room. The "+" symbols represent doorways 
  103. leading out of the room. Finally, the "d" symbol is your faithful dog.
  104.   Don't worry yet about the information on the bottom of the screen.
  105.   The "Your Command?" at the top of the screen indicates that the program
  106. is waiting for you to give it a command. In Hack, the world literally waits
  107. on your command. Until you type in something for it to do, NOTHING will
  108. happen during the game. This means that you can leave the computer, eat
  109. lunch, and come back, and the game will be exactly as you left it.
  110. (Note: The command prompt is not always as it appears above.) Basically,
  111. if nothing is happening on the screen, the program is waiting for you to
  112. give it a command.
  113.  
  114.   Let's move the character one space to the left. Movement is performed
  115. by typing the key (make sure your caps lock is off) which corresponds to
  116. the direction you want to go in.
  117.  
  118. The direction keys are :
  119.   y  k  u
  120.    \ | /
  121.   h- @ -l
  122.    / | \
  123.   b  j  n
  124.  
  125.  
  126. This means that if you type "h", the "@" will move one space to the left.
  127. If you type "u", the "@" will move diagonally up and to the right one space.
  128. So to move to the left one space, we type "h". The room now looks something
  129. like this :
  130.  
  131.   -------
  132.   |.....|
  133.   |..@<.|
  134.   +..d..|
  135.   |.....|
  136.   |.....+
  137.   ----+--
  138.  
  139.   Notice that not only have you moved one space to the left, but the dog
  140. has moved one space to the right. The dog's movements are controlled by
  141. the program, and he will move when all the other computer controlled people
  142. (and monsters) move.
  143.   The "<" symbol is the way out of the dungeon. "<" represents a set of
  144. stairs which go up to the previous level. If you leave the dungeon, then
  145. the game ends. Similarly, the ">" symbol represents stairs going to the
  146. next level. To climb or descend the stairs, type the stair symbol you are
  147. on. That is, to climb up, type "<". To go down, type ">".
  148.  
  149.   Once you have moved a few times, you should have the idea of how 
  150. basic movement works in Hack. Now to deal with other things.
  151.  
  152.   Type "i". You now see a list of objects. It will look something like
  153. this :
  154.  
  155. (a) +1 Club (weapon in hand)
  156. (b) +1 Bow
  157. (c) 43 +0 arrows
  158. (d) +0 Leather armor (being worn)
  159.  
  160. The "i" command stands for "Inventory." The list of objects is the list of 
  161. items in your possession. Most items will be carried in your characters 
  162. "back-pack." Those that are not, such as the club in the above example,
  163. are indicated in your inventory. "Weapon in hand" means that your character
  164. is holding that item in his hand. If he attacks a creature, he will hit it
  165. with this weapon. "being worn" means the character is wearing that item. In
  166. particular, the character will wear armor to protect himself from damage.
  167.   You may have seen symbols in the room other than the ones discussed. 
  168. The general rule is : if a symbol is a letter, then it is a creature. 
  169. Otherwise, it is an object. There are exceptions to both parts of the rule,
  170. however, so be careful.
  171.   To see a list of all the object symbols, type "?". This will send you
  172. into the help subroutine. If the program asks you "Long or Short help?" type
  173. "s" for now. A list of all the objects and commands will be printed on the
  174. screen. Read them carefully, and follow the prompts.
  175.   The long help contains information on how to play hack. It is strongly
  176. recommended that you read this also.
  177.   To pick up an item, you simply walk over it. When this occurs, you will
  178. automatically attempt to pick up the item. Be aware, however, that items are
  179. not weightless, and so you may find yourself unable to pick up an item
  180. because it weighs to much.
  181.  
  182.  
  183.   To move onto a space without picking up an item, type "m", and then the
  184. direction you wish to move. If there is something on the space you are on,
  185. you may look at it by typing ":". [In some versions, you can also set
  186. your "pickup" option on or off by typing the "@" symbol. This is very
  187. useful if there are a lot of items around that you don't want to pick
  188. up. -PG]
  189.  
  190. The last thing which will be covered is combat.
  191.  
  192.   Let's say that you have been wandering about for a little while, and 
  193. you have found a monster. The monster appears as a symbol on the map, just
  194. like the little dog. Combat in hack is very simple. There are three ways that
  195. you can fight a monster :
  196.  
  197. 1) You can bash it with your weapon.
  198. 2) You can throw or shoot something at it.
  199. 3) You can zap it with a wand, or cast a spell at it.
  200.    Spells are only used in nethack.
  201.  
  202. To accomplish 1), you simply attempt to move into the space the monster is
  203. currently in. So, for example, if the creature is one space to the left of 
  204. your character, and you type "h", you will attack it. Likewise, monsters
  205. attack you by moving into your space.
  206.   For 2), you must have something to throw. You can throw anything, but
  207. it is strongly recommended that you use a weapon if you want to do damage to
  208. the creature. To throw an object in your inventory, type "t". The game now
  209. asks what object you wish to throw. To see your inventory, type "*". To see
  210. the weapons in your inventory, type "?". Once you have decided what to throw,
  211. type the objects letter, and then the direction you wish to throw it in. You
  212. will now (hopefully) hit the monster with whatever you threw.
  213.   To use a bow and arrows for maximum effect, you must be wield the bow,
  214. and then "throw" an arrow. To wield a different weapon, type "w", and then
  215. the letter of the object you wish to wield. Be careful that you are not 
  216. bashing a creature with your bow, as this is not very effective. The same 
  217. applies for slings and rocks. [And crossbows and bolts. -PG]
  218.   For 3), the procedure is similar to 2). Type "z" (for zap), and the 
  219. letter of the wand you wish to use. If the program now prompts you to type
  220. a direction, then type the direction you want to blast in. There are three
  221. basic effects possible when zapping a wand :
  222.  
  223.   1) The wand has no direction, and simply does something.
  224.      Example : When a wand of light is zapped, it will light up the room.
  225.   2) The wand affects whatever is in the given direction.
  226.      Example : A wand of slow monster will slow down any monster it is
  227.                zapped at.
  228.   3) The wand shoots a "ray" or "bolt" in the given direction. It will
  229.      try to hit any creature in its path, and may bounce off of 
  230.      walls and doors. BE CAREFUL! It is very easy to bounce such a 
  231.      blast into yourself.
  232.      Example : A wand of fire shoots a bolt of fire in the indicated
  233.      direction.
  234.  
  235. Note that you may throw or zap in any direction (including up or down) that
  236. you may move in. 
  237.  
  238.  
  239.   When you attack a creature (or are attacked by one), if the attack hits
  240. damage is done by the attacker. This damage is represented as hit points, or
  241. HP for short. Every creature, including yourself, has a certain number of these
  242. hit points. When you take damage, you will lose a certain number of them. The
  243. greater the damage, the more hit points you will lose. If a creature is reduced
  244. to less than one hit point, it dies. Hence, ALWAYS BE AWARE OF HOW MANY HIT
  245. POINTS YOU HAVE LEFT, because if you lose them them all, the game is over, and
  246. you have lost.
  247.   The amount of HP's damage that is done depends on a number of different
  248. factors, such as what weapon you are wielding and what your current strength.
  249. Your strength is the number listed after "STR" on the bottom of the screen. 
  250. This is discussed later on, and you do not have to worry to much about it to
  251. start.
  252.   Any attack has a percent chance to hit which depends on a few key statistics. 
  253.   The first of these is the armor class of the defender, or AC for 
  254. short. This number ranges (usually) from 10 to -10. It may go higher or lower
  255. depending on the circumstances. In particular, armor classes for a winning
  256. character very often do go below -10. The lower the number, the better the
  257. chance that any attack on that defender will miss. 
  258.   The second factor is the "level" of the attacker. Your level is listed
  259. on the bottom of the screen. Initially it is 1, but it will rise as you kill
  260. monsters. For every monster you kill, you will be awarded points, called
  261. experience points (EXP). Your level is directly determined by the number of
  262. EXP you possess. In addition, your hit points will increase every time you
  263. go up a level as well.
  264.   The final factor is a vague factor known as luck. The program will
  265. not tell you what your luck is, but it is used in many factors of the game.
  266. Basically, the higher your luck, the better you are at doing almost everything.
  267. There are ways to modify your luck, which are up to you to find. [These
  268. are virtually impossible to find out through play. If you want to know
  269. them, read them in the spoilers section below. -PG]
  270.  
  271. Now you should know enough to play the game, and discover things on your own.
  272. What follows is a summary of the commands and symbols, and then a section which
  273. discusses more advanced topics. It is meant to act as a guide to players of
  274. what their options are.
  275.  
  276. The final section contains "spoilers", or information which gives away 
  277. something in the game which might "spoil" the game for those who prefer to
  278. find the information on their own. CONSIDER CAREFULLY YOUR DECISION TO READ
  279. THIS SECTION. Only if you are truly stuck should you have to resort to reading
  280. it, and many players feel that spoilers are another form of cheating.
  281.  
  282. That being said, enjoy the game!
  283.  
  284.  
  285. CHAPTER 3: COMMAND SUMMARY AND DESCRIPTIONS
  286.  
  287. (The following is an excerpt from the long help command in nethack)
  288.  
  289. Commands:
  290.         Hack knows the following commands:
  291.         ?       help: print this list.
  292.         Q       Quit the game.
  293.         S       Save the game.
  294.         !       Escape to a shell.
  295.         ^Z      Suspend the game.
  296.         <       up: go up the staircase (if you are standing on it).
  297.         >       down: go down (just like up).
  298.         kjhlyubn - go one step in the direction indicated.
  299.                 k: north (i.e., to the top of the screen),
  300.                 j: south, h: west, l: east, y: ne, u: nw, b: se, n: sw.
  301.         KJHLYUBN - Go in that direction until you hit a wall or run
  302.                 into something.
  303.         m       (followed by one of kjhlyubn): move without picking up
  304.                 any objects.
  305.         M       (followed by one of KJHLYUBN): Move far, no pickup.
  306.         g       (followed by one of kjhlyubn): move until something
  307.                 interesting is found.
  308.         G       (followed by one of KJHLYUBN): as previous, but forking
  309.                 of corridors is not considered interesting.
  310.         i       print your inventory.
  311.         I       print selected parts of your inventory, as in
  312.                 I* - print all gems in inventory;
  313.                 IU - print all unpaid items;
  314.                 IX - print all used up items that are on your shopping bill;
  315.                 I$ - count your money.
  316.         s       search for secret doors and traps around you.
  317.         ^       ask for the type of a trap you found earlier.
  318.         )       ask for current wielded weapon.
  319.         [       ask for current armor.
  320.         =       ask for current rings.
  321.         $       count how many gold pieces you are carrying.
  322.         .       rest, do nothing.
  323.         ,       pick up some things.
  324.         :       look at what is here.
  325.         ^T      teleport.
  326.         ^R      redraw the screen.
  327.         ^P      repeat last message
  328.                 (subsequent ^P's repeat earlier messages).
  329.         /       (followed by any symbol): tell what this symbol represents.
  330.         \       tell what has been discovered.
  331.         e       eat food.
  332.         w       wield weapon. w- means: wield nothing, use bare hands.
  333.         q       drink (quaff) a potion.
  334.         r       read a scroll.
  335.         T       Take off armor.
  336.         R       Remove Ring.
  337.         W       Wear armor.
  338.         P       Put on a ring.
  339.         X       transcribe (learn) a spell.
  340.  
  341.  
  342.         x       print a list of know spells.
  343.         z       zap a wand.
  344.         t       throw an object or shoot an arrow.
  345.         p       pay your shopping bill.
  346.         d       drop something. d7a: drop seven items of object a.
  347.         D       Drop several things.
  348.                 In answer to the question "What kinds of things do you
  349.                 want to drop? [!%= au]" you should give zero or more
  350.                 object symbols possibly followed by 'a' and/or 'u'.
  351.                 'a' means: drop all such objects, without asking for
  352.                         confirmation.
  353.                 'u' means: drop only unpaid objects (when in a shop).
  354.         a       use, apply - Generic command for using a key to lock
  355.                 or unlock a door, using a camera, using a rope, etc.
  356.         c       call: name a certain object or class of objects.
  357.         C       Call: Name an individual monster.
  358.         E       Engrave: Write a message in the dust on the floor.
  359.                 E- means: use fingers for writing.
  360.         O       Set options. You will be asked to enter an option line.
  361.                 If this is empty, the current options are reported.
  362.                 Otherwise it should be a list of options separated by commas.
  363.                 Possible boolean options are: oneline, time, news, tombstone,
  364.                 rest_on_space, fixinvlet, beginner, male, female.
  365.                 They can be negated by prefixing them with '!' or "no".
  366.                 A string option is name; it supplies the answer to the
  367.                 question "Who are you?"; it may have a suffix.
  368.                 A compound option is endgame; it is followed by a description
  369.                 of what parts of the list of topscorers should be printed
  370.                 when the game is finished.
  371.                 Usually one will not want to use the 'O' command, but instead
  372.                 put a HACKOPTIONS="...." line in one's environment.
  373.         v       print version number.
  374.  
  375.         You can put a number before a command to repeat it that many times,
  376.         as in "20s" or "40.".
  377.  
  378. COMMAND REFERENCE MANUAL:
  379. The following is a more complete description of the commands in hack.
  380. The syntax used is:
  381. (Command name) (additional prompts)
  382. Example: a [*? or letter] means type "a". At the next prompt, type a letter,
  383. * or ?
  384.  
  385. a [*? or letter]
  386. -   apply an item which has an unusual use, such as a camera, leash or
  387.     lunch box.
  388.     All such items fall under the class of Tools.
  389.     "a ?" - gives an list of all Tools in the inventory.
  390.     "a *" - prints the inventory.
  391.     "a <letter>" - If that letter is in the inventory, applies that item
  392.                    if possible.
  393.  
  394. b
  395. -  move one space down and to the left.
  396.  
  397.  
  398. B
  399. -  move down and to the left until an object is encountered.
  400.  
  401. c [yn] [?* or letter] <name>
  402. -  allows the user to name an object or type of object in his inventory.
  403.    At the prompt "Do you want to name an individual object? [yn]"
  404.    type "y" if you wish to name a specific item in your inventory, or
  405.    type "n" if you wish to name a type of object.
  406.    "c y" - Typing "?" or "*" displays the inventory.
  407.       If the letter of an object is typed, the user is prompted for the
  408.    name of the object. This name will be used whenever the program
  409.    refers to that object.
  410.       Example :"c y <long sword's letter> Stormbringer" results in the 
  411.    long sword being called "Stormbringer", as in the inventory listing:
  412.  
  413.        "a long sword named Stormbringer"
  414.  
  415.    "c n" - Typing "?" will list all unidentified items in the inventory.
  416.       Typing "*" will display the inventory. If the letter of an object
  417.    which is not identified is typed, then the user will be prompted
  418.    for the new name of that type of item.
  419.  
  420.       Example :"c n <white potion's letter> Feel Good" results in all white
  421.    potions being referred to as "a potion of Feel Good."
  422.  
  423.       The name will be nullified when the item is identified.
  424.  
  425. C [hjkl.] <name>
  426. -   allows the user to name a specific creature. At the prompt, a cursor
  427.     will appear. Move the cursor with the keys "hjkl" as with normal
  428.     movement. When the cursor is over the monster to be named, type ".",
  429.     and then the name of the creature. This names only that monster, and
  430.     not that class of monsters.
  431.        Example : naming your little dog "Spot" will result in any future
  432.    references to the little dog as "Spot", as in:
  433.  
  434.          "Spot hits the acid blob. Spot kills the acid blob!"
  435.  
  436.    [This can be hilarious at times. Try walking into a treasure zoo
  437.     while wearing a ring of conflict and naming every creature in sight.
  438.     The play-by-play of the ensuing brawl is a riot. -PG]
  439.  
  440. d [?*$ number or letter]
  441. -   allows the user to drop either his gold or a specific item in his
  442.   inventory.
  443.     Typing "?" or "*" displays the inventory.
  444.     Typing a letter drops all items labeled with that letter.
  445.     Typing "$" drops all of the user's gold.
  446.     Typing a number, and then either a letter or "$" drops that number
  447.   of the item being dropped
  448.  
  449.     Example : "d 3 <darts' letter>" drops 3 darts.
  450.               "d 250 $" drops 250 gold.
  451.  
  452.  
  453. D [`()[]%/=?!*$ and/or a] <return> [nyaq]
  454. -   Allows the user to selectively drop items from a selected set of
  455.   object types.
  456.     To use, type a string which consists of object symbols of the types
  457.   which are to be dropped. If this string is followed by an "a", all items
  458.   of the listed types are dropped. Otherwise, the program displays in
  459.   inventory order each item which is one of the selected types, and prompts
  460.   the user with "[nyaq]".
  461.     Typing "n" will keep the item in the inventory, and prompt for the
  462.   next item.
  463.     Typing "y" will drop that item, and prompt for the next item.
  464.     Typing "a" will drop that item, and all subsequent items.
  465.     Typing "q" will abort the command.
  466.  
  467.     Example : "D %/=* a" will drop all food, wands rings and gems in the
  468.               inventory.
  469.  
  470. e [?* or letter]
  471. -   eats something in the inventory.
  472.     Typing "?" displays all food in the inventory.
  473.     Typing "*" displays the inventory.
  474.     Typing a letter of a Comestible results in the user eating one of that
  475.   item.
  476.  
  477. E [?*- or a letter] <phrase>
  478. -   allows the user to engrave a phrase on the ground with some specified
  479.   object.
  480.     Typing "?" displays all items listed after "-" in the prompt.
  481.     Typing "*" displays the inventory.
  482.     Typing a letter wields that item if the item can be engraved with. 
  483.     Typing "-" unwields the users weapon (if uncursed), and writes in the
  484.   dust with the users fingers.
  485.     Once the writing implement is selected, the user is prompted for a
  486.   phrase. This phrase is written in that spot. If a sharp object or magic
  487.   marker was used, the engraving is permanent, and whenever the user walks
  488.   over the spot, he will see the phrase which is engraved there. If fingers
  489.   are used, the engraving will smudge after the user takes an action, and
  490.   not be as legible.
  491.     The effects of different objects on Engravings are left to the reader's
  492.   imagination.
  493.  
  494. (f or g) [yuhjklbn]
  495. -   moves the user in the specified direction until next to an object,
  496.   intersection, door, stairs or unfriendly monster.
  497.  
  498. (F or G) [yuhjklbn]
  499. -   moves the user as above, but ignores intersections.
  500.  
  501. h
  502. -   moves the user one space to the left.
  503.  
  504. H
  505. -   moves the user to the left until he moves onto an object.
  506.  
  507.  
  508. i
  509. -   displays the inventory
  510.  
  511. I [`)([%/=?!+]
  512. -   Allows the user to display objects of specific types in the inventory.
  513.   At the prompt, type the symbols for the types of objects you wish to
  514.   display.
  515.  
  516.   Example: "I %=!?" gives a list of all food,rings, potions and scrolls
  517.            in the inventory.
  518.  
  519. j
  520. -   Moves the user down one space
  521.  
  522. J
  523. -   Moves the user down until he moves onto an object.
  524.  
  525. k
  526. -   Moves the user up one space.
  527.  
  528. K
  529. -   Moves the user up until he moves onto an object.
  530.  
  531. l
  532. -   Moves the user one space to the right.
  533.  
  534. L
  535. -   Moves the user to right until he moves onto an object
  536.  
  537. m [yuhjklbn]
  538. -   Moves the user one space in the specified direction, but if the user
  539.   moves onto an object, he will not attempt to pick it up.
  540.  
  541. M [yuhjklbn]
  542. -   As above, but moves in the specified direction until no legal moves are
  543.   possible.
  544.  
  545. n
  546. -   Moves the user one space down and to the right.
  547.  
  548. N
  549. -   Moves the user down and to the right until he moves onto an object.
  550.  
  551. O <option>
  552. -   Allows the user to set game options during play. Possible options include:
  553.   help : gives help on setting options in hack.
  554.   rest_on_space : makes the space bar act as the "." command.
  555.   time : displays the number of turns the user has been playing for on the 
  556.          bottom line of the screen.
  557.   tombstone : Is on if after the user dies a tombstone is displayed.
  558.   (fe)male : Sets the users sex. 
  559.  
  560.  
  561.   Compound options include:
  562.   name:<users name> : sets the users name and class, as in "Merlin-W".
  563.   dogname : gives the name of the users (first) dog (e.g. dogname:Spot)
  564.   packorder:<")[%?+/=!(*0> : sets the default packorder of the inventory.
  565.             The inventory will be sorted by the object type given. The above
  566.             order is the default. 
  567.  
  568.             Example: Since "?" comes before "/", scrolls are displayed before 
  569.                      wands.
  570.  
  571.   endgame:<options> : describes what is displayed after the game is ended.
  572.                       options are separated by the "/" character.
  573.     options include:
  574.           own scores : displays all scores with the users name in the high 
  575.                         score list.
  576.           <number> top scores : displays the top <number> scores
  577.           <number> around my score : displays the <number> scores greater than
  578.                                      and less than the user's score.
  579.  
  580.           Example : "endgame:own scores/5 topscores/4 around my score"
  581.  
  582. p
  583. -   If the user has unpaid items in his inventory or on his bill for a shop,
  584.   he will pay the shopkeeper the full amount of the bill if possible.
  585.  
  586. P [?* or letter] [rl]
  587. -   Puts a ring on one of the users hands. Only one ring is allowed per hand.
  588.     Typing "?" displays all rings in the inventory.
  589.     Typing "*" displays the inventory.
  590.     If the letter of a ring is typed, the program will ask which hand to
  591.   place the ring on, if both hands are available. Ring's powers remain
  592.   in effect as long as the ring is worn. [If only one hand is free, the
  593.   ring will automatically go on that hand. -PG]
  594.  
  595. q [?* or letter]
  596. -   Quaffs a potion.
  597.     Typing "?" displays all potions in the inventory.
  598.     Typing "*" displays the inventory.
  599.     If the letter of a potion is typed, the user will quaff that potion.
  600.   Potions are only usable once. After being quaffed, the item is destroyed.
  601.  
  602. Q [yn]
  603. -   Quit the game.
  604.  
  605. r [?* or letter]
  606. -   Reads a scroll in the inventory.
  607.     Typing "?" displays all scrolls in the inventory.
  608.     Typing "*" displays the inventory.
  609.     If the letter of a scroll is typed, the user will read that scroll.
  610.   Some scrolls may have to be named by the user after being read. In these
  611.   cases the program will ask what to call the scroll. Type in the name, as if
  612.   typing in the name for the "c" command.
  613.     All scrolls (except possibly for "blank paper") may only be read once.
  614.   They are destroyed after use.
  615.  
  616.  
  617. R [rl]
  618. -   Remove the ring on the right or left hand. If the ring is cursed, it cannot
  619.   be removed with this command.
  620.  
  621. s
  622. -   Search for secret doors and traps. There is a fair chance on each use of
  623.   this command that any neighboring secret door or trap will become visible.
  624.   Do not expect only one search to be sufficient.
  625.  
  626. S
  627. -   Save the game in progress. The next time the game is played, the old game 
  628.   will be restored from the point at which the user left off.  This command 
  629.   ends (temporarily) the game in progress.
  630.  
  631. t [?* or letter] [yuhjklbn<>]
  632. -   Throws an object in the inventory in the specified direction. 
  633.     Typing "?" lists all weapons in the inventory.
  634.     Typing "*" displays the inventory.
  635.     Typing the letter of an object makes the game prompt for the desired 
  636.   direction. After typing the direction, the object is thrown away from the
  637.   character in that direction. 
  638.  
  639. T [?* or letter]
  640. -   Removes a specified piece of armor which the user is wearing.
  641.     Typing "?" lists all worn items (except rings).
  642.     Typing "*" displays the inventory.
  643.     Typing the letter of a worn piece of armor takes off the armor.
  644.   Note that this command may take a number of turns to execute.
  645.  
  646. u
  647. -   Move one space up and to the right.
  648.  
  649. U
  650. -   Move up and to the right until the character moves onto an object.
  651.  
  652. v
  653. -   Print the version number and information.
  654.  
  655. V
  656. -   Prints author's credits and version information.
  657.  
  658. w [?* or letter]
  659. -   Wields an item in the inventory (usually a weapon).
  660.     Typing "?" displays all weapons.
  661.     Typing "*" displays the inventory.
  662.     Typing the letter of an item in inventory makes the user wield that object 
  663.   as his weapon. This object is used in all close combat as the user's weapon. 
  664.   If the user is wielding a cursed item, this command is aborted. If the user
  665.   is wearing a shield, he can not wield a two-handed sword.
  666.  
  667.  
  668. W [?* or letter]
  669. -   Allows the user to wear a specified piece of armor.
  670.     Typing "?" will display all unworn pieces of armor.
  671.     Typing "*" will display the inventory.
  672.     Typing the letter of a piece of armor will, if possible, result in the
  673.   user wearing that piece of armor. The user must remove his cloak before
  674.   altering his body armor. If the current armor of that type is cursed,
  675.   this command is aborted.
  676.  
  677. x
  678. -   List all spells that have been transcribed by the user.
  679.  
  680. X [?* or letter]
  681. -   Attempt to transcribe a spellbook.
  682.     Typing "?" lists all spellbooks in the users inventory.
  683.     Typing "*" displays the inventory.
  684.     Typing the letter of a spell book results in the user attempting to 
  685.   transcribe the spell book into memory.
  686.     Note that transcription success depends on level, and also transcribing a 
  687.   spell may take a while. [Note: This can be dangerous, since you can be
  688.   attacked while transcribing. Unlike most other actions, you will not
  689.   stop your attempt to transcribe! -PG]
  690.  
  691. y
  692. -   Move one space up and to the left.
  693.  
  694. Y
  695. -   Move up and to the left until the user moves onto an object.
  696.  
  697. z [?* or letter] [direction or string?]
  698. -   Zaps a wand in the inventory.
  699.     Typing "?" displays all wands in the inventory.
  700.     Typing "*" displays the inventory.
  701.     Typing the letter of a wand zaps that wand. Note that wands have a
  702.   limited number of charges, and will not work (usually) after their charges
  703.   are depleted.
  704.     Some wands require the user to specify a direction in which they may be 
  705.   zapped.
  706.     One wand requires the typing of a string. (The user must find this one.)
  707.  
  708. <a number> <a command>
  709. -   If a number if typed before a command character, then the command which 
  710.   follows will be executed that number of times, or until something swings 
  711.   at the user, or the command is no longer possible.
  712.  
  713.     Example : "5h" moves the user five spaces to the left.
  714.     Example : "10s" searches ten times.
  715.  
  716. @
  717. -   Toggles the pick-up option (default is ON). When this option is OFF,
  718.   the user will not automatically pick up any item in a space he moves into.
  719.   He must pick it up using the "," command. Note that this is particularly
  720.   useful in rooms which are crowded with worthless items, and when walking
  721.   over dead cockatrices.
  722.  
  723.  
  724. # [command]
  725. -   Allows the user to use an extended command. To use an extended
  726.   command, type "#" followed by the command's name, and return.
  727.   The possible commands are :
  728.  
  729.        "?" - Displays the set of extended commands
  730.        "breathe" - If the user is able, he will breathe fire like a dragon.
  731.        "cast" [letter] -
  732.               casts a spell which the user knows. 
  733.               Typing the letter of a displayed spell will cast that spell.
  734.               The number listed next to the spell is its mana cost. This
  735.               is deducted from the users current mana. Spell effects are
  736.               left to the reader's imagination.
  737.        "dip" [letter] -
  738.              dips a specified object into something, such as a pool or a potion.
  739.              To dip an item into a pool, stand over the pool and use the dip 
  740.              command.
  741.        "pray" - Plead with the gods for help. The reader may experiment with
  742.                 this command at his own choosing (and risk).
  743.        "remove" - If the user has the ability to do so, he can remove a cursed
  744.                   item, such as an iron ball.
  745.        "sit" - Sit down on the space you are in. Sit in thrones at your own
  746.                peril.
  747.        "turn" - Attempt to turn undead creatures. Turned creatures will flee in 
  748.                 terror from the user. Only knights and priests may turn undead.
  749.        "wipe" - Wipe of the user's face. Useful when it is dirty.
  750.  
  751. $
  752. -   Counts the user's money. If the user has a large quantity of money,
  753.   he will sit down to count it. [This is mostly useless, since gold is
  754.   displayed at all times. -PG]
  755.  
  756. ^ [yuhjklbn]
  757. -   Tells the user what type of trap a "^" represents.
  758.   If the user is adjacent to a trap, and types "^" followed by the direction
  759.   the trap is in, the program will tell the user what the name of the trap is.
  760.  
  761.     Example: "This is a sleep trap."
  762.  
  763. )
  764. -   This displays the what the user's currently wielded weapon is.
  765.  
  766. =
  767. -   This displays what rings the user is wearing.
  768.  
  769. [
  770. -   This displays the armor that the user is wearing.
  771.  
  772. \
  773. -   This displays a list of all items (except weapons and armor) that have 
  774.   been identified, or have been named by the user.
  775.  
  776. :
  777. -   This displays everything that is in the user's space.
  778.  
  779.  
  780. , [`)([%/=?!+ aA]
  781. -   This allows the user to pick up items in his space. All gold is
  782.   automatically picked up. If there is only one item, it is picked up.
  783.   If there are multiple items on the space, the user is prompted for which
  784.   types of item he wishes to pick up. To pick up all items in the space,
  785.   type "a".
  786.     To pick up all items of one or more types, input a string consisting of 
  787.   the symbols for the types you wish to pick up, followed by "A"
  788.     To pick up only certain items of specific types, input the types as
  789.   above, but do not type "A". 
  790.     The program will display, one item at a time, every item in the inventory 
  791.   which is of the specified types, followed by the prompt "[ynaq]"
  792.     Typing "y" picks up that item, and displays the next.
  793.     Typing "n" displays the next item.
  794.     Typing "a" picks up that item, and all remaining items of the named types.
  795.     Typing "q" aborts the command.
  796.     The program will not allow the user to pick up any item which is too heavy.
  797.  
  798. .
  799. -   The user does nothing for one turn.
  800.  
  801. / [symbol]   (for versions before nethack.)
  802. -   displays help on the symbol typed at the prompt.
  803.  
  804.     Example : "/=" tells the user that "=" represent rings.
  805.  
  806. / [yuhjklbn.] (for nethack)
  807. -   allows the user to display help about any visible symbol.
  808.     The user moves the displayed cursor with normal movement keys onto the 
  809.   symbol in question, and then types "." Help is then displayed on that
  810.   symbol. [You may also use the command as above to tell you about a
  811.   class of symbols, rather than a specific one. -PG]
  812.  
  813. <
  814. -   Climb up to the previous level. The user must be on a "<" symbol.
  815.  
  816. >
  817. -   Go down to the next level. The user must be on a ">" symbol.
  818.  
  819. ^R
  820. -   redraws the screen.
  821.  
  822.  
  823. CHAPTER 4: SPOILERS WARNING AND PREFACE
  824.  
  825.    The following section contains information which the user does not have to 
  826. know in order to play the game, but which can be found out through the normal
  827. course of play. Players who wish to win without any additional help should not
  828. read the following sections.
  829.    Those who only wish to find some specific information may find what they
  830. want here, and then not read anything else.
  831.    For those whose curiosity has gotten the better of them, read what you will.
  832.  
  833. APPENDIX A : SPOILERS ON NETHACK
  834.  
  835. The following is a reprint of an article posted by Maarten Jan Huisjes on 13
  836. Aug, 1987. It has been extended to include other useful information.
  837. All information is for the nethack version of hack. For people playing other
  838. versions of hack, you may ignore all the items which do not appear in your game.
  839. In particular, ignore all references to spell books. This is a nethack property
  840. only.
  841.  
  842. ______________________________________________________________________________
  843. FOOD
  844.  
  845.        <0   Fainting
  846.      0-49   Weak
  847.    50-149   Hungry
  848.   150-999   Satiated
  849. 1000-1499   Having a hard time
  850.      1500+  Choke
  851.  
  852. Example : If the user is Having a hard time getting food down, he has at
  853.           least 1000 turns before fainting.
  854.  
  855.    Hunger goes down 1/turn; 10/turn if regenerating or wearing a hunger ring
  856. You are hungrier after vomiting and casting spells. [Information under
  857. rings says 5/turn. I don't know which is correct. -PG]
  858.    Meat becomes tainted after ~50 turns. It is best to eat it immediately, or
  859. not at all.
  860.  
  861. Name = The name of the food. The name used when wishing for the object.
  862. Chance = The chance that a "%" symbol is that type of food.
  863. Weight = weight in pounds.
  864. Nutrition = The number of turns added to the users hunger count.
  865.  
  866. s=may make you sick (lose 1-8hp)
  867. p=Poisonous food. Persons with poison resistance may ignore the effects.
  868.  
  869. Name             Chance Weight  Nutrition Remarks
  870.  
  871. food ration         46, 4,  800
  872. tripe ration        16, 2,  200 May make you vomit.  Tastes okay if polymorphed.
  873. pancake              3, 1,  200
  874. dead lizard          3, 1,   40 Try when turning to stone.
  875. fortune cookie       7, 1,   40
  876. carrot               2, 1,   50 May improve vision
  877. slice of pizza       5, 1,  250
  878.  
  879.  
  880. Name              Chance  Weight  Nutrition  Remarks
  881.  
  882. cream pie            3, 1,  100 Fun to throw
  883. tin                  7, 1     *
  884. orange               1, 1,   80
  885. apple                1, 1,   50
  886. pear                 1, 1,   50
  887. melon                1, 1,  100
  888. banana               1, 1,   80
  889. candy bar            1, 1,  100
  890. egg                  1, 1,   80
  891. clove of garlic      1, 1,   40 Can wield against undead
  892. lump of royal jelly  0, 1,  200 Sometimes strength++.
  893.  
  894. * Contents of Tins
  895.  
  896. Salmon -       60   Will make your hands slippery
  897. Peaches -      40
  898. Apple Juice -  20
  899. Substance -   500
  900. Rotten meat - -50   Makes you vomit
  901. Spinach -     600   Strength++.
  902.  
  903. DEAD THINGS:
  904.  
  905. NOTE:  It is advised that the user not save meat for long periods of time,
  906.       as it may become tainted. Eating a dead monster often conveys one
  907.       of its attributes. These are listed in the Nutrition Remarks.
  908.  
  909. Name              Chance  Weight  Nutrition  Remarks
  910.  
  911. dead human            0,  40,   400   Permanent aggravate monster.
  912. dead giant ant        0,   3,   p30
  913. dead giant bat        0,   3,    30   Confuses
  914. dead centaur          0,  50,   500
  915. dead dragon           0, 150, p1500   Makes you fire resistant.
  916. dead floating eye     0,   1,   s10   Gives you telepathy.
  917. dead freezing sphere  0,   1,    10   Makes you Cold resistant.
  918. dead gnome            0,  10,   100
  919. dead hobgoblin        0,  20,   200
  920. dead stalker          0,  40,   400   Gives you see invisible.
  921.                                       (Also invisibility if invisible?)
  922. dead jackal           0,  10,   100
  923. dead kobold           0,  10,  p100
  924. dead leprechaun       0,  40,  s400   Makes you teleport. 
  925. dead mimic            0,  40,   400   Mimic a treasure chest.
  926. dead nymph            0,  40,  s400   Makes you teleport. 
  927. dead orc              0,  20,  s200
  928. dead purple worm      0,  70,  s700
  929. dead quantum mechanic 0,  20,  s200   Makes you teleport.
  930. dead rust monster     0,  50,  s500
  931. dead snake            0,  10,  p100
  932. dead troll            0,  40,   400   [Best to eat this quickly! -PG]
  933. dead umber hulk       0,  50,  s500
  934. dead vampire          0,  40,  p400
  935.  
  936.  
  937. Name              Chance  Weight  Nutrition  Remarks
  938.  
  939. dead wraith           0,   1,    10   Gain level.
  940. dead xorn             0,  70,   700
  941. dead yeti             0,  70,   700   Cold resistance.
  942. dead zombie           0,   3,    30
  943. dead acid blob        0,   3,   p30   Try when turning to stone.
  944. dead giant beetle     0,   1,   p10
  945. dead cockatrice       0,   3,    30   If you want to be a statue.
  946.                                       (But may eat safely as a cockatrice.)
  947. dead dog              0,  20,   200   Aggravate monsters.
  948. dead ettin            0,   3,    30
  949. dead fog cloud        0,   1,    10
  950. dead gelatinous cube  0,  10,   100
  951. dead homunculus       0,  20,  p200
  952. dead imp              0,   1,    10
  953. dead jaguar           0,  30,   300
  954. dead killer bee       0,   1,   p10   Makes you poison resistant.
  955. dead leocrotta        0,  50,   500
  956. dead minotaur         0,   70,  700
  957. dead nurse            0,   40,  400   Aggravate monsters,heal wounds.
  958. dead owlbear          0,   70,  700
  959. dead piercer          0,   20,  200
  960. dead quivering blob   0,   10,  100
  961. dead giant rat        0,    3,   30
  962. dead giant scorpion   0,   10, p100   Same as killer bee.
  963. dead tengu            0,   30,  300   Makes you teleport.
  964. dead unicorn          0,   30, s300
  965. dead violet fungus    0,   10,  100   Cosmic indeed (Oh wow ).
  966. dead long worm        0,   50,  500
  967. dead xan              0,   30, s300
  968. dead yellow light     0,    1,   10   Confuses, May improve vision
  969. dead zruty            0,   60, s600
  970. dead giant            0,   70,  700   Strength++.
  971. dead daemon           0,   80,  800
  972.  
  973.  
  974. ________________________________________________________________________________
  975. WEAPONS.
  976.  
  977. AXE, SWORD, KATANA, and TWO-HANDED SWORD are good for worm-cutting.
  978. (PICK-)AXE, DAGGER, and CRYSKNIFE are good for tin-opening. 
  979. SPEAR is good against X, D, n, e.
  980.  
  981.   The damage is the maximum damage done by the weapon against that size of
  982. creature, not including damage modifiers.
  983.  
  984.  
  985. Name         Chance  Weight  Small/Large-damage
  986.  
  987. arrow             6,   0,  6,  6
  988. sling bullet      6,   0,  4,  6
  989. crossbow bolt     6,   0,  4,  6
  990. dart              6,   0,  3,  2
  991. shuriken          3,   0,  8,  6
  992. rock              4,   1,  3,  3
  993. boomerang         1,   3,  9,  9
  994. mace              6,   3,  6,  7 /* +1 small */
  995. axe               5,   3,  6,  4
  996. flail             5,   3,  6,  5 /* +1 small,  +1d4 large */
  997. long sword        5,   3,  8, 12
  998. two handed sword  4,   4, 12,  6 /* +2d6 large */
  999. dagger            4,   3,  4,  3
  1000. worm tooth        0,   4,  2,  2
  1001. crysknife         0,   3, 10, 10
  1002. aklys             1,   3,  6,  3
  1003. bardiche          1,   3,  4,  4 /* +1d4 small,  +2d4 large */
  1004. bec de corbin     1,   3,  8,  6
  1005. bill-guisarme     1,   3,  4, 10 /* +1d4 small */
  1006. club              1,   3,  6,  3
  1007. fauchard          1,   3,  6,  8
  1008. glaive            1,   3,  6, 10
  1009. guisarme          1,   3,  4,  8 /* +1d4 small */
  1010. halberd           1,   3, 10,  6 /* +1d6 large */
  1011. lucern hammer     1,   3,  4,  6 /* +1d4 small */
  1012. javelin           1,   3,  6,  6
  1013. katana            1,   3, 12, 12
  1014. lance             1,   3,  6,  8
  1015. morning star      1,   3,  4,  6 /* +d4 small,  +1 large */
  1016. partisan          1,   3,  6,  6 /* +1 large */
  1017. ranseur           1,   3,  4,  4 /* +d4 both */
  1018. scimitar          1,   3,  8,  8
  1019. spetum            1,   3,  6,  6 /* +1 small,  +d6 large */
  1020. broad sword       1,   3,  4,  6 /* +d4 small,  +1 large */
  1021. short sword       1,   3,  6,  8
  1022. trident           1,   3,  6,  4 /* +1 small,  +2d4 large */
  1023. voulge            1,   3,  4,  4 /* +d4 both */
  1024. spear             4,   3,  6,  8
  1025. bow               4,   3,  4,  6
  1026. sling             4,   3,  6,  6
  1027. crossbow          5,   3,  4,  6
  1028.  
  1029.   Enormous Rocks have an excellent chance of hitting, and will do 1-20
  1030. damage, but you must be a giant to wield them.
  1031.   Heavy Iron Balls will do 1-25 damage! (but are extremely heavy)
  1032.  
  1033.  
  1034. ________________________________________________________________________________
  1035. ARMOR.
  1036.  
  1037. Name           Chance   Weight   Ac
  1038.  
  1039. helmet              3,   1,  9
  1040. plate mail          5,   5,  3
  1041. splint mail         7,   5,  4
  1042. banded mail         9,   5,  4
  1043. chain mail         10,   5,  5
  1044. scale mail         10,   5,  6
  1045. ring mail          12,   5,  7
  1046.  
  1047.  The armors below do not rust.
  1048.  
  1049. studded leather    12,   3,  7
  1050. elfin chain mail    1,   1,  5
  1051. bronze plate mail   6,   5,  4
  1052. crystal plate mail  1,   5,  3
  1053. leather armor      15,   3,  8
  1054. elven cloak         5,   0,  9
  1055. shield              3,   0,  9
  1056. pair of gloves      1,   1,  9
  1057.  
  1058.  
  1059. ________________________________________________________________________________
  1060. SCROLLS.
  1061. Many scrolls give strange effects when confused or hallucinating.
  1062.  
  1063. Name          Chance   Remarks
  1064.  
  1065. enchant armor   6   Do not try more than a +4 armor or it might evaporate.
  1066. destroy armor   5
  1067. confuse monster 5
  1068. scare monster   4
  1069. blank paper     3
  1070. remove curse    6
  1071. enchant weapon  6
  1072. damage weapon   5
  1073. create monster  5
  1074. taming          1
  1075. genocide        2   Do not try genocide '@', or reading when confused.
  1076. light          10
  1077. teleportation   5
  1078. gold detection  4
  1079. food detection  1
  1080. identify       18
  1081. magic mapping   5
  1082. amnesia         3
  1083. fire            5
  1084. punishment      1
  1085.  
  1086.  
  1087. ________________________________________________________________________________
  1088. WANDS
  1089.  
  1090. NOTE: Some wands may be used on the user. Type "." for direction.
  1091.  
  1092. Name                  Chance
  1093.  
  1094. light                  10
  1095. secret door detection   5
  1096. create monster          5
  1097. wishing                 1   Actually this chance is even smaller.
  1098. striking                7
  1099. nothing                 2
  1100. slow monster            5
  1101. speed monster           5
  1102. undead turning          5
  1103. polymorph               5   Use it on wands and you might find another.
  1104. cancellation            5   Do not zap this wand on items.
  1105. teleportation           5
  1106. make invisible          7
  1107. probing                 2
  1108. digging                 5
  1109. magic missile          10
  1110. fire                    5
  1111. sleep                   5
  1112. cold                    5
  1113. death                   1   Use with care, it might bounce.
  1114.  
  1115.  
  1116. ________________________________________________________________________________
  1117. SPELLS
  1118.  
  1119. NOTE: These spells are for nethack only.
  1120.  
  1121. Level is the difficulty of learning the spell, and its point cost.
  1122. It is harder to transcribe spells before the user is 7th level.
  1123.  
  1124. Name            Chance  Level.
  1125.  
  1126. sleep               6   1
  1127. healing             6   1
  1128. detect monsters     5   1
  1129. light               5   1
  1130. force bolt          4   1
  1131. confuse monster     5   2
  1132. detect food         5   2
  1133. slow monster        4   2
  1134. magic missile       4   2
  1135. create monster      4   2
  1136. cure blindness      3   2
  1137. cause fear          4   3
  1138. cure sickness       3   3
  1139. detect unseen       4   3
  1140. charm monster       3   3
  1141. extra healing       3   3
  1142. haste self          3   3
  1143. detect treasure     3   4
  1144. invisibility        3   4
  1145. levitation          3   4
  1146. fireball            2   4
  1147. restore strength    2   4
  1148. dig                 2   5
  1149. magic mapping       2   5
  1150. remove curse        2   5
  1151. cone of cold        1   5
  1152. identify            1   5
  1153. teleport away       2   6
  1154. create familiar     1   6
  1155. polymorph           1   6
  1156. turn undead         1   6
  1157. cancellation        1   7
  1158. finger of death     1   7
  1159. genocide            1   7
  1160.  
  1161.  
  1162. ________________________________________________________________________________
  1163. RINGS.
  1164.  
  1165. Rings all weigh 1.
  1166.  
  1167. Name
  1168.  
  1169. adornment
  1170. teleportation
  1171. regeneration
  1172. searching
  1173. see invisible
  1174. stealth
  1175. levitation
  1176. poison resistance
  1177. aggravate monster
  1178. hunger
  1179. fire resistance
  1180. cold resistance
  1181. protection from shape changers
  1182. conflict
  1183. gain strength
  1184. increase damage
  1185. protection
  1186. warning
  1187. teleport control
  1188. polymorph             [These last two are additions as of NetHack 2.2 -PG]
  1189. polymorph control
  1190.  
  1191.  
  1192.  
  1193. ________________________________________________________________________________
  1194. GEMS.
  1195.  
  1196. Name              Chance  Pecunia
  1197.  
  1198. dilithium crystal   1,    4500
  1199. diamond             1,    4000
  1200. ruby                1,    3500
  1201. sapphire            1,    3000
  1202. emerald             1,    2500
  1203. turquoise           1,    2000
  1204. aquamarine          1,    1500
  1205. tourmaline          1,    1000
  1206. topaz               1,     900
  1207. opal                1,     800
  1208. garnet              1,     700
  1209. amethyst            1,     650
  1210. agate               2,     600
  1211. onyx                2,     550
  1212. jasper              2,     500
  1213. jade                2,     450
  1214.  
  1215.  
  1216. ITEM EFFECTS:
  1217.  
  1218. Scrolls: (Effects when the user is not confused)
  1219.  
  1220. enchant armor (weapon) - Gives the armor (weapon) a +1 bonus. 
  1221.  
  1222. destroy armor - Destroy the user's worn armor.
  1223.  
  1224. confuse monster - The user will confuse the next monster he hits.
  1225.  
  1226. scare monster - The scroll has two uses:
  1227.  
  1228.    1) If read, all monster in sight will run in terror from the user.
  1229.    2) If dropped on the ground, no monster may attack the user in hand
  1230.         to hand combat so long as he remains standing on the scroll.
  1231.         If the user attempts to pick up the scroll after he has dropped
  1232.         it, it disintegrates.
  1233.  
  1234. blank paper - The user may write on the paper in magic marker, and create a 
  1235.               scroll. Write the name of a scroll you have already found.
  1236.  
  1237. remove curse - All cursed items wielded or worn are uncursed.
  1238.  
  1239. damage weapon - The weapon has a -1 penalty cast upon it.
  1240.  
  1241. create monster - A monster appears next to the character.
  1242.  
  1243. taming - Any creature next to the user becomes the user's pet.
  1244.  
  1245. genocide - The user may destroy any one type of monster.
  1246.  
  1247. light - If read in a room, the room is now lit.
  1248.  
  1249. teleportation - The user teleports to a (random) location on the level.
  1250.  
  1251. gold detection - Displays all gold on the level.
  1252.  
  1253. food detection - Displays all food on the level.
  1254.  
  1255. identify- The user may identify items in his possession.
  1256.  
  1257. magic mapping - maps the level.
  1258.  
  1259. amnesia - User loses all spells, maps and knowledge of what items are.
  1260.  
  1261. fire - User loses 1-6 h.p., and may lose some flammable material.
  1262.  
  1263. punishment - The user is cursed with a heavy iron ball.
  1264.  
  1265.  
  1266. --------------------------------------------------------------------------
  1267. Wands: (D) indicates the user must specify a direction.
  1268.  
  1269. light - Acts as a scroll of light when zapped.
  1270.  
  1271. secret door detection - All secret doors in sight of the user of found.
  1272.  
  1273. create monster - Acts as a scroll of create monster.
  1274.  
  1275. wishing - The user may wish for an item. This is discussed under
  1276.           "WISHING FOR OBJECTS"
  1277.  
  1278. striking - (D) The user gets a ranged attack on any creature or object it is
  1279.            pointed at.
  1280.  
  1281. nothing - This wand does nothing when zapped.
  1282.  
  1283. slow monster - (D) The monster's speed is halved. Not cumulative.
  1284.  
  1285. speed monster - (D) The monster's speed is doubled. The user gains Speed.
  1286.  
  1287. undead turning - (D) If zapped at undead creatures, they run in fear.
  1288.                  If zapped at a dead monster, it is brought back to life.
  1289.  
  1290. polymorph - (D) The user changes the target(s). This is discussed further
  1291.             under POLYMORPHING YOURSELF AND YOUR ITEMS.
  1292.  
  1293. cancellation - (D) The target loses any special abilities. If the target had or
  1294.                was a magic object, it loses any magic pluses and charges.
  1295.  
  1296. teleportation - (D) Teleports the target (randomly).
  1297.  
  1298. make invisible - (D) Makes the target invisible.
  1299.  
  1300. probing - (D) Displays the stats of any monster it is pointed at.
  1301.  
  1302. digging - (D) Digs a hole in walls in the direction the wand is pointed.
  1303.  
  1304. magic missile,fire,cold,death,sleep - (D) Fires a bolt of that type in the
  1305.         direction indicated. Death will kill any creature it hits,
  1306.         while sleep will sleep any creature it hits.
  1307. _________________________________________________________________________
  1308. Rings:
  1309.  
  1310. adornment - No effect, other than its value.
  1311.  
  1312. teleportation - Bestows intrinsic teleportation. [But not control! -PG]
  1313.  
  1314. regeneration - The user heals one hit point per turn. Note: This ring makes
  1315.         the user become hungrier 5 times as quickly. Also, at high 
  1316.         levels the rings SLOWS DOWN your regeneration.
  1317.  
  1318. searching - The user performs a free "s" command each turn.
  1319.  
  1320. see invisible - The user can see all invisible objects and creatures.
  1321.  
  1322.  
  1323. stealth - The user will not wake up sleeping monsters, unless he attacks them.
  1324.  
  1325. levitation - The user floats off the ground, and can neither move or fall down,
  1326.              nor can he pick up items. He is immune to pit traps, trap doors
  1327.              and water spaces, and can carry more items up stairs.
  1328.  
  1329. poison resistance - The user is unaffected by poison. (But watch out for 
  1330.                     biologically contaminated orange juice).
  1331.  
  1332. aggravate monster - All monsters will be awake and angry at the user.
  1333.  
  1334. hunger - The user becomes hungrier 5 times as quickly.
  1335.  
  1336. fire resistance - The user is immune to fire.
  1337.  
  1338. cold resistance - The user is immune to cold.
  1339.  
  1340. protection from shape changers - All shape changers appear as a ":", and can
  1341.                                  not change shape.
  1342.  
  1343. conflict - All creatures will attack the creature closest to themselves. 
  1344.            Great at treasure zoos.
  1345.  
  1346. gain strength - The user's strength is increased.
  1347.  
  1348. increase damage - The user's damage is increased.
  1349.  
  1350. protection - The user gains a bonus on his A.C.
  1351.  
  1352. warning - The ring will glow when a monster is generated.
  1353.  
  1354. teleport control - The user may choose, when he teleports, where he wishes to
  1355.                    go to.
  1356.  
  1357. POTION MESSAGES
  1358. Potions may be quaffed, or thrown. If a potion is thrown down (">" for
  1359. direction), the message listed next to Vapor is received.
  1360.  
  1361.  Name          Message(s)
  1362.  
  1363. restore strength   Wow!  This makes you feel great!
  1364.                    ... looks sound and hale again!   (Thrown to monster)
  1365.  
  1366. gain energy    Magical energies course through your body.
  1367.                You feel feverish.   (Confused)
  1368.  
  1369. booze  Ooph!  This tastes like liquid fire!
  1370.        You feel somewhat dizzy.  (Vapor)
  1371.  
  1372. invisibility  Gee!  All of a sudden, you can't see yourself.
  1373.               For an instance you couldn't see your right hand.(Vapor)
  1374.               You feel rather airy. (Blinded)
  1375.  
  1376. fruit juice    This tastes like fruit juice.
  1377.  
  1378.  
  1379. healing  You begin to feel better.
  1380.          ... looks sound and hale again! (Thrown to monster)
  1381.  
  1382. paralysis  Your feet are frozen to the floor!
  1383.            Something seems to be holding you. (Vapor)
  1384.            You are motionlessly suspended. (Levitated)
  1385.  
  1386. monster detection  You sense the presence of monsters.
  1387.                    You feel threatened. (No monsters)
  1388.  
  1389. object detection  You sense the presence of objects.
  1390.                   You sense the presence of objects close nearby.
  1391.                   You feel a pull downward. (No objects)
  1392.  
  1393. sickness  Yech! This stuff tastes like poison.
  1394.           ... looks rather ill. (Thrown to monster)
  1395.  
  1396. confusion  Huh, What?  Where am I?
  1397.            What a trippy feeling. (Hallucinating)
  1398.            You feel somewhat dizzy. (Vapor)
  1399.  
  1400. gain strength  Wow do you feel strong!
  1401.                ... looks sound and hale again! (Thrown to monster)
  1402.  
  1403. speed  You are suddenly moving much faster.
  1404.        Your knees seem more flexible now. (Vapor)
  1405.        Your legs get new energy. (Fast)
  1406.  
  1407. blindness  A cloud of darkness falls upon you.
  1408.            It suddenly gets dark. (Vapor)
  1409.            Bummer!  Everything is dark!  Help! (Hallucinating)
  1410.  
  1411. gain level  You feel more experienced.
  1412.  
  1413. extra healing  You feel much better.
  1414.                ... looks sound and hale again! (Thrown to monster)
  1415.  
  1416. levitation  Oh wow!  You're floating in the air! (Hallucinating)
  1417.  
  1418. hallucination  Oh wow!  Everything looks so cosmic!
  1419.                You have a vision for a moment. (Vapor)
  1420.  
  1421. holy water  You feel full of awe.
  1422.             This burns like acid.  (When you are 'Z','V','W' or '&')
  1423.             ... shrieks in pain!  (Thrown to 'Z','V','W',' ' or '&')
  1424.  
  1425.  
  1426. EFFECTS OF SCROLLS WHEN CONFUSED:
  1427.  
  1428. enchant armor - armor glows silver, and is now rust proof.
  1429. destroy armor - armor is rustable.
  1430. confuse monster - Normal effect.
  1431. scare monster - aggravate monster
  1432. blank paper - Normal effect.
  1433. remove curse - curses item
  1434. enchant weapon - weapon is now rust proof.
  1435. damage weapon - weapon is now rustable
  1436. create monster - surrounds the user with eight acid blobs ("a").
  1437. taming - tames EVERY creature in sight. (fun for treasure zoos)
  1438. genocide - kills all @. (including you)
  1439. light - room is now not lit.
  1440. teleportation - the user is teleported to a random level.
  1441.                 If the user has teleport control, he may choose the level.
  1442. gold detection - see fake gold
  1443. food detection - see fake food
  1444. identify - identifies the scroll as an identify scroll
  1445. magic mapping - gives random spaces of the map
  1446. amnesia - you forget how to read.
  1447. fire - you burn your hands.
  1448. punishment - ?
  1449.  
  1450.  
  1451. Extended commands:
  1452.  
  1453. #dip
  1454.     Dip arrows or darts in the potion and if it was a potion of:
  1455.     Sickness or Paralysis --> your dipped weapon gets stronger.
  1456.     Holy water --> your weapon gets blessed and is better in use against the
  1457.                    undead.
  1458.     Note that this uses up the potion, just like quaffing it.
  1459.  
  1460. #pray
  1461.     You can pray 300 turns after you last prayed (1000 if a demigod).
  1462.     However, you can wait too long between prayers. You can also use the
  1463.     "time" option to see how much time has passed. Terrible things may happen
  1464.     if you pray too soon, so be sure that your time has come. Possible
  1465.     effects include having your strength, hit points and hunger restored,
  1466.     with 5 additional hp; gaining an intrinsic power; gaining an item,
  1467.     and becoming the hand of Elbereth (good luck). The negative effects
  1468.     of praying too soon are left to the player to discover.
  1469.  
  1470. #sit
  1471.    Use this command while you are on an throne (\).  You might get a wish
  1472.    (Chance 1 in 86), but also you can lose your gold or your possessions get
  1473.    cursed or identified!! [I don't know what the author meant by your
  1474.    possessions getting identified. This sounds like a good thing to me. -PG]
  1475.  
  1476. #wipe
  1477.    Clean your face when dirty.
  1478.  
  1479. #breathe
  1480.    First polymorph yourself in a Dragon. Then you can breathe fire.
  1481.  
  1482. #remove
  1483.     First polymorph into a Nymph. Then you can remove iron balls.
  1484.  
  1485. SPECIAL NOTES FOR HACK:
  1486.  
  1487. LUCK:
  1488.     Luck is used in many different features of hack. In particular, luck
  1489.   is used in combat to determine whether the user and his opponent hit, and
  1490.   how much damage is done. Luck is also used when praying, and in using
  1491.   wands of wishing.
  1492.     Luck begins at 0, and increases or decreases as the game goes on. The
  1493.   higher the user's luck, the luckier he is. The maximum luck is usually 10
  1494.   (although this changes with the phases of the moon in some versions). The 
  1495.   minimum luck is -10.
  1496.     The user should try to be aware of two basic ways of modifying his luck.
  1497.   The first is that killing any tame creature (such as your dog), and killing
  1498.   any human (such as a shopkeeper) will result in the user's luck being
  1499.   drastically reduced. The second is that if the user throws a gem at a
  1500.   unicorn, his luck will be increased. It is the latter that we will discuss
  1501.   in depth.
  1502.  
  1503.  
  1504.     First, the gem must be an actual gem, and not a piece of colored glass. 
  1505.   Also, if the gem has been identified as being real, then the increase in
  1506.   the user's luck will be much greater than if the gem the was unidentified. 
  1507.   More importantly, it is fairly difficult to get into a position to throw
  1508.   a gem at a unicorn, since the unicorn will never move into such a space.
  1509.   Should the unicorn be forced to move into such a space, it will teleport to
  1510.   another space on the level. 
  1511.     There are numerous methods to circumvent this. One method is to quaff
  1512.   a haste potion, and simply walk next to it during the user's "free" move.
  1513.   Another, more more useful method, is to get a teleport control ring and
  1514.   teleport next to the unicorn (or along a line of sight). The unicorn does
  1515.   not have a chance to move away, since teleporting does not count as a turn
  1516.   for movement purposes. The latter method is more common, since telepor-
  1517.   tation is (can be) intrinsic to the character, and teleport control is a
  1518.   necessity.
  1519.     One method to trap the unicorn, so that the user can move next to it
  1520.   without the use of ^T is the following: 
  1521.  
  1522.     Unicorns in rooms only move diagnolly, and will only teleport if a move
  1523.   is impossible. Hence you can restrict the unicorn to two spaces as shown
  1524.   below:
  1525.  
  1526.     |.....
  1527.     |..@..
  1528.     |1....
  1529.     |.2...
  1530.     ------
  1531.     The unicorn will only move in the spaces marked 1 and 2, and will not
  1532.   teleport away. This allows the user to teleport freely next to the unicorn.
  1533.  
  1534. THE LITTLE DOG:
  1535.    To me, the most interesting (although by far not the most useful) feature
  1536. of hack is the little dog, and the way tame creatures work in general in hack.
  1537. If the user wishes to try to make use of his pet, he should be aware of its
  1538. abilities, limitations and its intelligence (or lack thereof).
  1539.    The dog is friendly towards the user, and will tend to follow him around
  1540. the dungeon. However, the dog, like the user, requires food to live. The dog
  1541. can eat every non-poisonous substance safely, and will not eat tainted meat.
  1542. Under normal circumstances, the dog will not eat food rations, fruit and
  1543. other "human" foods.
  1544.    The dog goes through three stages of development: little dog, dog and
  1545. large dog. In fact, the dog actually goes through more, but they are divided
  1546. equally into these three classes. All dogs may attack twice per turn, and move
  1547. two spaces per turn (i.e. they are hasted). Dogs will do about 1-6 points of 
  1548. damage per hit, so they can do 2-12 points of damage per round. A hasted dog
  1549. can be quite vicious.
  1550.    The dog improves by gaining experience from killing monsters, just as the
  1551. character does. The dog, however, is limited to level 6, and about 85 hp, so
  1552. the dog cannot become as powerful as the character. However, initially,
  1553. the dog can be much better than the character at killing creatures, and so can
  1554. be useful for low-level characters as a guard dog.
  1555.    If the user goes up or down levels for any reason, then if the dog is on
  1556. a space adjacent to the character, he will change levels with the user. But
  1557. if the dog is not on an adjacent space, he is stranded on the old level.
  1558.  
  1559.  
  1560.    When a dog becomes stranded, he becomes wild. The user may also find other
  1561. wild dogs in the dungeon. A wild dog will attack the user like any other
  1562. monster. However, the dog will be tamed if the user throws any food (except
  1563. fruit) at the dog. The dog will then "devour" the food, and is from then on
  1564. the pet of the user. Note, also, that the user is not limited to one pet, but
  1565. may tame as many pets as he wishes.
  1566.    A pet has other abilities as well. The first is that the pet will tend
  1567. not to walk over cursed items. This gives the user a cheap test to see if an
  1568. item is cursed. In addition, the dog will pick up items that he finds, and 
  1569. bring them to the user. 
  1570.    Finally, the dog will stay closer to the user if the user has a tripe
  1571. ration.
  1572.  
  1573. GHOST LEVELS:
  1574.   Occasionally, when a character dies, hack will save the level he died
  1575. on for future use. This level is called a ghost level, and the reader is
  1576. bound to find one sooner or later. Everything on the level will be exactly
  1577. as it was when the character died, with one addition. The old character's
  1578. ghost is also on the level. Ghosts, although hard to kill, can do almost no
  1579. damage. The nice thing about ghost levels is that all of the old character's
  1580. items are in one pile on the space the character died. It is a simple matter
  1581. to get these items.
  1582.   In fact, the hardest thing about ghost levels is that usually whatever
  1583. killed the old character is powerful enough to kill the new character as
  1584. well. There can be multiple ghost on one level. I recall one level
  1585. which had three cockatrices and five ghosts.
  1586.   Fortunately, ghost levels are eventually cleared by the program after
  1587. a certain period of time, so the user does not have to worry to much about
  1588. them in general.
  1589.  
  1590.  
  1591. WISHING FOR OBJECTS:
  1592.   Near the end of the game, the user will find wands of wishing. When 
  1593. these are zapped, the user is asked to wish for an item. One of the most 
  1594. frustrating things in hack is when a beginning player can not figure out 
  1595. what the exact name of the item he wants to wish for is. Here is how wishing
  1596. is accomplished.
  1597.   In the previous item list, the name of the object is the name the user
  1598. gives hack to wish for that item, not including the number wished for, and
  1599. the plus of the item (when wishing for weapons or armor). The general
  1600. format is:
  1601.  
  1602.   <# wished for><plus of item><name of item>
  1603.  
  1604. The user can NEVER wish for more than 3 of any item, or for an item with
  1605. magical plus greater than +3.
  1606.  
  1607. Example:   To wish for 3 potions of gain level, the user would type
  1608.            "3 potions of gain level"
  1609.  
  1610.            To wish for a +3 elven cloak,
  1611.            "+3 elven cloak"
  1612.  
  1613. [Note that if the program can't understand what you want, it will make
  1614.  a random selection. -PG]
  1615.  
  1616.  
  1617. THE CHARACTERS OF HACK:
  1618.  
  1619. ARCHAEOLOGIST: (or Spelunker)
  1620.   This character has a passion for the exploration of the unknown. But
  1621. don't let those spectacle deceive you. believe that mild mannered exterior
  1622. lies a character as tough as the Sahara. The Archaeologist begins with a
  1623. pick axe, and a large box for storing his lunch.
  1624.    Favorite dog names : Caesar, Rama Tut, Troy
  1625.    Special abilities : Speed
  1626.    Special items : pick axe, large box
  1627.  
  1628. TOURIST:
  1629.    Always cheerful, the tourist has always wanted to see the sights
  1630. in the Dungeon of Doom. Although the weakest of the characters, he is ready
  1631. ready to have a ball. He has his picnic lunch, his wallet, his ever ready
  1632. camera and his custom made darts (just in case there's a pub down there.)
  1633. The camera also has the Fisso-Blast Nuclear Flash Bulb, making night into
  1634. solar flare and blinding any creature to stupid enough to let its picture
  1635. be taken. Let's hope you remembered the leash.
  1636. The tourist: He may not be strong, but he sure isn't hungry.
  1637.    Favorite dog names : Spot, Rover, Fluffy
  1638.    Special abilities : None
  1639.    Special items : expensive camera, leash
  1640.  
  1641. FIGHTER: [Changed to BARBARIAN with NetHack 2.2 -PG]
  1642.    You heard that the Dungeon was a real challenge, but you heard that 
  1643. kind of talk before. Before you whip out your sword that is. It's not that
  1644. accurate, but if it hits, you can kiss that baby goodbye. Rough and tough,
  1645. with a sword the size of the Sears building, this character is a foe to be 
  1646. reckoned with.
  1647.    Favorite dog names : Spartan, Killer, Fluffy (don't laugh)
  1648.    Special abilities : None
  1649.    Special items : None
  1650.  
  1651. KNIGHT:
  1652.    Some people have called you a coward and a wimp because you wear so
  1653. much armor, and you're not very strong. But then again, they're dead and
  1654. you're not. After all, as long as you've got the armor available, why not
  1655. use all at once. Plus you know a few tricks when it comes to turning undead.
  1656. When it comes right down to it, a fellow can't be too careful.
  1657.    Favorite dog names : Arthur, Lancelot, Sir Robin 
  1658.    Special abilities : Turn undead
  1659.    Special items : None
  1660.  
  1661. CAVE-MAN:
  1662.    FOOD! It is the way of life. Food is good. Raw. The big cave has much
  1663. food. Has funny trinket too. You kill food with bow and club. You kill food
  1664. with bare hands. You kill food with mean glance. Smash anything in your way.
  1665. You may be hungry, but you sure are strong.
  1666.    Favorite dog names : DOG, WOOF, FOOD
  1667.    Special abilities : None
  1668.    Special items : None
  1669.  
  1670.  
  1671. SAMURAI:
  1672.    Your honor is at stake. You must recover the sacred amulet, or die 
  1673. trying. The ancient fighting skills of all your warlord ancestors are yours
  1674. to command, as is your mighty katana. You are quicker than your foes, and 
  1675. strong, and will defeat the evil creatures in your path.
  1676.    Favorite dog names : Sun-Tzu, Rising Sun, Tsunami
  1677.    Special abilities : Speed
  1678.    Special items : None
  1679.  
  1680. NINJA:
  1681.    None can hear you come, and none can warn your passing. Silent as the
  1682. night and deadly as a cobra, you stalk your prize in the fabled dungeon. Your
  1683. katana can dispatch the weak, and your stealth will allow you to pass the 
  1684. strong. Quicker than your foes, the prize is as good as yours. The ninja
  1685. never fails. 
  1686.    Favorite dog names : Swift-wind, Night blade, Sushi
  1687.    Special abilities : Speed, Stealth
  1688.    Special items : None [Blindfold, as of NetHack 2.2 -PG]
  1689.  
  1690. PRIEST:
  1691.    You are on a holy quest to recover the sacred relic from the hands
  1692. of the evil in the Dungeon. With the power of God, you will turn the undead
  1693. monstrosities, and venture into the bowels of the earth. You know a little
  1694. magic as well. If only you had remembered the holy hand grenade.
  1695.    Favorite dog names : Jonah, Samson, Gabriel
  1696.    Special Abilities : Turn undead
  1697.    Special items : None
  1698.  
  1699. VALKYRIE:
  1700.    Fabled warrior of Norse legend, you enter the halls to do battle with
  1701. the creatures of the dungeon. You wield your mighty spear, and use your 
  1702. quickness and fighting skills to defeat your terrible foes. You are tough,
  1703. and are used to the frigid winters of Frygia. Glory in the battle to come!
  1704.    Favorite dog names : Thor, Odin's Blood, Balder
  1705.    Special Abilities : Cold resistance
  1706.    Special items : None
  1707.  
  1708. ELF:
  1709.    How silly to take something like the Dungeon so seriously. After all,
  1710. how can any of those nasty creatures catch you, let alone escape your bow?
  1711. Besides, you're pretty sneaky, and have really good eyesight.You may as well 
  1712. get the amulet, and then think of something else that would be fun to do. 
  1713.    Favorite dog names : Happy, Hee-Hee, Keebler
  1714.    Special Abilities : Stealth, Speed
  1715.    Special Items : None
  1716.  
  1717. HEALER:
  1718.    As a doctor, you live to heal those in need. You also wouldn't mind
  1719. making a lot of money. Stethoscope in hand, you venture bravely into the
  1720. darkness of the dungeon. You were vaccinated, just in case, and have your 
  1721. poison antidotes ready. You may be a healer, but you wouldn't mind kicking
  1722. some butt down here.
  1723.    Favorite dog names : Casey, Kildare, Quincy
  1724.    Special Abilities : Poison resistance
  1725.    Special Items : Stethoscope
  1726.  
  1727.  
  1728. WIZARD:
  1729.    The mighty one, who wields the forces few can guess at. With your
  1730. powerful magical items, magical spells and good teleportational potential,
  1731. the denizens of this dungeon will bow before you power. Either the weakest
  1732. or most powerful of characters, the wizard is in a class by himself.
  1733.    Favorite dog names : Gandalf, Merlin, Skeeve
  1734.    Special Abilities : Better with spells, teleport and magic whistles
  1735.    Special Items : None [Possibly Magic Marker and Blindfold, as of
  1736.                          NetHack 2.2 -PG]
  1737.  
  1738.  
  1739. POLYMORPHING YOURSELF AND YOUR ITEMS (and other masochistic pastimes):
  1740. NOTE: The following only applies to nethack, and certain updated versions
  1741. of hack.
  1742.  
  1743.   The user should be aware that he is able in some versions to cast
  1744. polymorph on himself and on objects, as well as on monsters. 
  1745.   To polymorph yourself (and, in fact, to cast any spell on yourself), you
  1746. type "." for the spell's direction. Polymorphing yourself results in the
  1747. character becoming some type of monster. The character's hit points will be
  1748. reduced to conform with the monster type, and the character will gain all
  1749. abilities of the monster he is. 
  1750.   Be forewarned, however, that any armor you are wearing when you polymorph
  1751. may be destroyed, and that non-humanoid monsters can not wear armor or wield
  1752. weapons, in addition to there more limited hit points. Polymorphing is not
  1753. for everyone.
  1754.   To polymorph an object, simply drop the object, and polymorph in the
  1755. direction of the object, as if it were a monster. Objects are polymorphed
  1756. into random objects of the same type. For instance, a food ration can be
  1757. polymorphed into a carrot, a tripe ration, or any other comestible. The
  1758. only exception is that rocks are polymorphed into gems.
  1759.   The uses for this become quite clear after some thought on the readers part.
  1760. For instance, useless items can be transformed into more powerful ones. In
  1761. particular, polymorphing wands has its own special side effects.
  1762.  
  1763.  
  1764. THE LEVELS BEYOND 26 (not for hack v1.0)
  1765.  
  1766.   Once the user has reached level 26, he should be prepared to win the game.
  1767. However, finding the amulet is by no means easy, if you don't know where to 
  1768. look. Rather than tell the user how to find the amulet and wands of wishing,
  1769. we will only give the following advice.
  1770.  
  1771. Through the halls
  1772. the dungeon calls
  1773. for the hero to check the walls.
  1774.  
  1775. For not in sight
  1776. is the wand of might,
  1777. but instead in a spot quite tight.
  1778.  
  1779. Blast asunder
  1780. to receive the plunder
  1781. by pushing once, and looking under.
  1782.  
  1783. The last you seek
  1784. in a place quite bleak
  1785. and of brimstone it does reek.
  1786.  
  1787. Your quest now nigh
  1788. Beware, or fry,
  1789. If from fire you can die.
  1790.  
  1791. Give not a care
  1792. to lack of stair
  1793. but go directly to His lair.
  1794.  
  1795. To His home
  1796. you must now roam,
  1797. though surrounded by brine and foam.
  1798.  
  1799. A protective coat
  1800. is his moat
  1801. above this trap you must float.
  1802.  
  1803. And then you run
  1804. up towards the sun
  1805. and claim victory with a prize well won.
  1806.  
  1807.  
  1808. STRATEGIES OF HACK:
  1809.    The following is is a discussion of the various strategies used by 
  1810. hack players, and some helpful advice from Erik Lauer, our resident hack
  1811. expert.
  1812.  
  1813. OVERALL STRATEGIES
  1814. The blitz strategy:
  1815.    This strategy is to blitz down as far as possible, taking only enough 
  1816. time to find the items on the level and collect them. This particular
  1817. strategy is usually used by more inexperienced players who want to see how
  1818. far they can get in a certain amount of time. In fact, it is surprisingly
  1819. easy to go down levels, at least to the 26th level, even with a character
  1820. who is not very powerful. It is equally easy, however, to go to a level
  1821. with creatures far beyond your ability to reckon with, so care must be
  1822. taken to ensure this does not happen.
  1823.  
  1824. The "snail's pace" strategy:
  1825.    Here the player will only go down when he is running low on food. This
  1826. allows the player to develop as much as possible before encountering the 
  1827. harder creatures on the next level. This strategy has a few intrinsic problems.
  1828. One is that it is extremely easy to run too low on food if the player is not
  1829. careful. Another is that this takes a very long time, and so is only for the
  1830. truly patient. Finally, there is a point of diminishing returns, sometime
  1831. around when the cockatrices first appear, that it is no longer profitable to
  1832. fudge around on the upper levels.
  1833.    The best overall strategy is somewhere in between the two, and is based
  1834. primarily on what you find available.
  1835.    Although overall strategy is important, the most important thing in hack
  1836. is based on a simple idea:
  1837.  
  1838.    Hack is a game for opportunists.
  1839.  
  1840.    That is, as hack has grown, and more options become available to the
  1841. player, every little detail presents a potential tool for the observant
  1842. player. This has become increasingly true as hack expanded into nethack.
  1843.    Try to find a use for everything you find. I read an article once in
  1844. which the writer denounced the destroy armor scroll as totally worthless.
  1845. He had never thought that he could use it to destroy cursed armor also,
  1846. and so made his game that much harder. 
  1847.  
  1848.    If you can do this, then you can win the game.
  1849.  
  1850. SPECIFIC HINTS ON VARIOUS PARTS OF HACK:
  1851.  
  1852. Stores:
  1853.    This section presents probably the most useful thing in hack : the
  1854. store. The secret to stores does not lie in the buying of items, however.
  1855. The real secret lies in robbing them blind.
  1856.    There are probably as many ways to steal from shops as there are 
  1857. shopkeepers. The most common is to acquire teleportation, on a scroll, wand,
  1858. or intrinsically, pick up everything you can in the shop, and teleport out.
  1859. Another method is to polymorph the shopkeeper. He may become more powerful,
  1860. but it is not very likely. You can then walk past him. Another possibility
  1861.  
  1862.  
  1863. is to kill the shopkeeper. This is recommended only if you are powerful
  1864. (shopkeepers are not wimps), and either desperate or just plain sadistic.
  1865. Finally, you can steal individual items by having your dog go into the shop
  1866. and bring them out. [Reward your dog after he brings you the first item,
  1867. and he will continue bringing you items. Note that any item on the space
  1868. directly in front of the door is a freebie. -PG]
  1869.    Teleportation is the best method by far. Since it is very to find a
  1870. leprechaun on the first and second levels, it is highly recommended that
  1871. you eat one, and thereby gain intrinsic teleportation. The same in fact goes
  1872. for finding floating eyes to gain telepathy. [Having intrinsic teleportation
  1873. isn't always a good thing, unless you can control it -PG]
  1874.  
  1875. Kops:
  1876.    The Keystone Kops were an addition to nethack, originally intended to
  1877. hinder people who rob shops. When a shop is robbed, a number of "K"'s appear.
  1878. The Kops attack by throwing cream pies at you, and regenerate when they are 
  1879. killed. 
  1880.    However, the Kops in fact represent yet another aspect of hack which
  1881. the observant player can make excellent use of. The Kops are very easy to
  1882. kill, and do very little damage. Although you can be blinded by a cream pie,
  1883. since it is very easy to acquire telepathy, this is definitely not a
  1884. hindrance. Most importantly, since every Kop carries a large number of
  1885. cream pies, they also create an abundance of readily available food. Finally,
  1886. since Kops sometimes carry magic items, killing them gives the user hoards
  1887. of treasure. Regeneration is, therefore, just a bonus, because it means
  1888. your supplies of food, treasure and experience points will not run out.
  1889.    There is only one way the Kops can hurt a player who is even moderately
  1890. powerful, but it should not be taken lightly. If the Kops throw a cream pie
  1891. at you, but miss and hit the shopkeeper, the shopkeeper will get mad and
  1892. attack you. This means that you must trap the shopkeeper if you do not
  1893. want him getting in the way. The best way is to trap yourself and the
  1894. shopkeeper with a boulder in the shop. Then, when you teleport out, the
  1895. shopkeeper is alive, but trapped.
  1896.  
  1897. Food:
  1898.    Once you have mastered combat, you will find that food becomes the
  1899. main problem. If you do not continually eat food, you will eventually begin
  1900. to faint and starve. Fainting is often enough to kill a character by itself.
  1901.    The key is to hunt down food constantly. Hunt, kill and eat all the
  1902. edible creatures you can find. ALWAYS search for monsters which can give
  1903. you special abilities. In particular, before continuing below the second
  1904. level you should find and eat, if possible, a leprechaun and a floating
  1905. eye. [See my earlier comment on eating leprechauns. -PG]
  1906.    However, do not eat so much that you could not eat any more. The
  1907. reason is that if you are on the verge of choking, and kill, for example,
  1908. a wraith, you would not be able to eat the cadaver for a long time, and so
  1909. it might spoil before you get the chance.
  1910.  
  1911. Unidentified items:
  1912.    Yet another key point is to find out as quickly as possible which
  1913. items have which powers. This does not mean, however, that you should
  1914. try every item out the instant you get it.
  1915.    We will deal with the different items separately.
  1916.  
  1917.  
  1918. Potions :
  1919.    You should almost never test out potions until you are at least seventh
  1920. level, at full hit points and are on a cleared level. If you are not
  1921. seventh level, you run the risk of wasting a potion of gain level. If you
  1922. are not at full hit points, then should you quaff a healing potion, it will
  1923. not affect your maximum hit points. If there are creatures nearby, you run
  1924. the risk of being paralyzed or confused, and unable to defend yourself.
  1925.    Lastly, always test your duplicate potions first.
  1926.  
  1927. Scrolls :
  1928.    You should only test out scrolls when you are wearing a spare set of
  1929. armor and are wielding a spare weapon. This allows you to not risk your good
  1930. equipment on determining which scrolls are the destroy armor and damage
  1931. weapon scrolls. Of course, once one of these have been found, you no longer
  1932. have to take precautions against it. You also should wait until you have
  1933. something to identify, in case it is an identify scroll. You won't have to 
  1934. wait long. And, as with potions, check the duplicate scrolls first.
  1935.  
  1936. Rings :
  1937.    Rings should be identified first, since they are the hardest thing
  1938. to identify, aside from gems. Trying on unidentified rings is not encouraged,
  1939. as one cursed ring can ruin the game. If you have a scroll of remove curse,
  1940. it is safe to try on the ring. You can check it out if there is a Nymph on 
  1941. the level. That is dealt with later. [If you have several unidentified
  1942. rings, (or armor or weapons) try them all until you have on as many
  1943. cursed items as possible. This will allow you to de-curse as many as
  1944. possible with one scroll. -PG]
  1945.  
  1946. Wands :
  1947.    ALWAYS test out wands as soon as there is a weak monster in your area
  1948. to zap them at. Since wand might shoot out a ray or a bolt, which bounce,
  1949. it is vitally important to shoot the wand diagnolly in such a way that
  1950. should the bolt bounce, it will not hit the character. [The bolt is of a
  1951. finite length, so in a large room it may be safely zapped in a straight
  1952. line. -PG]
  1953.    Usually, the wand's function is now apparent. For wands, however, this
  1954. may not be sufficient to identify the wand. After zapping such a wand, and
  1955. observing the target, call the wand something such as "tested1". This shows
  1956. you that, although its purpose is not known, the wand has been used.
  1957.  
  1958. Spellbooks :
  1959.    Do not read spellbooks until you are at least eighth level and have
  1960. identified a scroll of amnesia. This is because transcribing spells is hard
  1961. for characters less than eighth level, and the amnesia scroll remove all the 
  1962. spells you know. In either case, the user loses valuable spellbooks. [If
  1963. you know any spells, but don't know which scroll is amnesia, don't read
  1964. any scroll without identifying it. Also, just because you can learn a
  1965. spell, doesn't mean you can cast it. Since spellbooks have a limited
  1966. number of castings, be careful not to waste them. -PG]
  1967.  
  1968.  
  1969.  
  1970. Vaults:
  1971.    Eventually, the player will encounter what is known as a treasure
  1972. vault. The vault is a 2x2 room, with four "$" spaces, and no doors. There
  1973. is always a secret door somewhere on a vault level which leads to a space 
  1974. which teleports the user to the vault. There is always an engraving which
  1975. says "ad ?ae??um." If you find this engraving, search for the secret door
  1976. next to it.
  1977.    To get out of a vault with all the money, you have to either teleport
  1978. or use a wand of digging. If you have neither, eventually a guard will
  1979. enter the vault. He is harmless, but will lead you out of the vault if you 
  1980. are carrying NO money. Should you discover the answer to his question, he 
  1981. will leave by yourself in the vault. (In other words, knowing the answer
  1982. does not help). [My luckiest move was zapping a guard with a wand of
  1983. polymorph. He turned into a Quantum Mechanic, hit me, and 
  1984.  
  1985. Nymphs:
  1986.    Although Nymphs can be annoying, they can do one extremely useful 
  1987. thing: they can steal cursed items. Therefore, if a Nymph is found, you
  1988. can use her to remove your cursed items. The way this is done is demonstrated
  1989. in the following example of how to check unidentified rings with a Nymph on
  1990. the level.
  1991.  
  1992.    1) Clear out the level the Nymph is on.
  1993.    2) Go down to the next level, and clear it.
  1994.    3) Try putting on your unidentified rings. If a ring is not cursed,
  1995.       name it something such as "uncursed1" to mark that this
  1996.       type of ring is not cursed.
  1997.    4) Upon finding a cursed ring, remove ALL of your equipment, and drop
  1998.       it on that space. Then go up the stairs, find the Nymph, and
  1999.       let her steal an item. The item she steals then has to be
  2000.       the cursed item. Go back down, equip yourself, and continue.
  2001.  
  2002. Not using the dog:
  2003.    Although the dog seems to be a useful ally, in fact he presents a good
  2004. player with a handicap. This is for a number of reasons.
  2005.  
  2006.   1) Anything the dog kills, the character does not get experience for.
  2007.      This means that it takes longer to go up levels while using the dog.
  2008.  
  2009.   2) The dog will eat edible monsters and other Comestibles that the
  2010.      character needs. Hence, there is less food for the character.
  2011.  
  2012.   3) Perhaps the worst thing about the dog is that the user can NOT enter
  2013.      the dog's space. This means that the dog can actually trap the user
  2014.      in a corridor, and prevent the user's escape from a powerful monster.
  2015.  
  2016. For these reasons, unless you have the uncontrollable urge to experiment with
  2017. the dog, it is best to leave the dog behind on the first level. [Don't
  2018. do it. If I remember my hack folklore correctly, you take the same
  2019. penalty for abandoning a dog as for killing him. -PG]
  2020.  
  2021.  
  2022.  
  2023. Carry extra items, but don't carry gold:
  2024.    The user should always carry as many items as he possibly can through
  2025. the dungeon. This is because even worthless items can be polymorphed or sold
  2026. in the shops for gold. On the other hand, you should NEVER carry gold. The
  2027. gold weighs a non-negligible amount, and is not used unless the person is 
  2028. buying an item in a shop. Since buying items is very rare, it is best to
  2029. pile all the gold from a level next to the stairs going up. That way, on the
  2030. way back up, the winning player can collect all the money he left behind.
  2031.    One useful technique of bringing more items than you can carry along
  2032. is to shuffle them down. Carry your items in two (or more) piles. Leave one
  2033. pile by the stairs, while carrying the other items. When you find the stairs
  2034. going down, drop the surplus items, go get the other pile, and bring it down
  2035. to the next level. Drop that pile, go back up, and get the other items.
  2036.  
  2037. Fighting floating eyes:
  2038.    Many beginning players fight floating eyes by killing them in hand
  2039. to hand combat. This is not a very good method, since it lets the eye get a
  2040. chance to paralyze you. Instead, it is far preferable to attack floating eyes
  2041. by throwing weapons at them. If you have your dog, you can always let the dog
  2042. kill it, and then step in to eat the eye before the dog gets a chance.
  2043.  
  2044. Killing Leprechauns:
  2045.    The leprechaun is yet another reason not to carry any gold at all. If
  2046. you are hit by a leprechaun while you have gold, not only do you lose the
  2047. gold (temporarily), but the trickster also teleports away, and so you have
  2048. to hunt him down. If you do not have any gold, however, he is a very weak 
  2049. monster worth gold and experience. Before you fight one, drop your gold in a
  2050. place he can not get to, and then kill him. Also be careful about letting
  2051. the leprechaun run away, since he is faster than you are.
  2052.  
  2053. Dealing with Shapechangers:
  2054.    Once you begin to encounter shapechangers, you should already be able
  2055. to deal with all the other creatures. The shape-changers, however, are the
  2056. most potentially dangerous creatures in the game, because
  2057.  
  2058.    1) They can not be genocided, and can turn into previously genocided
  2059.       creatures.
  2060.  
  2061.    2) They can kill the user instantly in more than one way.
  2062.  
  2063.    Do not believe that the only way a shapechanger can kill you is by
  2064. turning into a cockatrice and stoning you. They also have the unique ability
  2065. to swallow you, as a purple worm for instance, and then kill you by changing
  2066. into a different creature. There is no defense against this attack other than
  2067. to wear a ring of protection against shape changers. DO NOT take them lightly.
  2068. [I've never encountered either a shapechanger or a ring to protect against
  2069. them. I wouldn't worry all that much. -PG]
  2070.  
  2071.  
  2072. REAL SPOILERS:
  2073.  
  2074.    The following are spoilers which go beyond (in my opinion) helpful hints. 
  2075. Some of these spoilers (in fact most of them) can be figured out in the
  2076. course of play, but they also dramatically change how the game works.
  2077. Read this only if you are truly stuck.
  2078.  
  2079.  
  2080. ELBERETH:
  2081.    Any version which has engraving has the secret word Elbereth in it.
  2082. If the user etches the word "Elbereth" on the ground, and does not smudge
  2083. the word by moving (you may type "."), monster will flee in terror upon
  2084. moving adjacent to the user, so long as the user stands on that space. It
  2085. works much like a scare monster scroll, except that the user can not attack
  2086. off of it and preserve its abilities.
  2087.    Using Elbereth allows a competent player to win at will, but it is
  2088. basically cheating. It is possible to guess about the word Elbereth, however.
  2089. Use it only when no one is watching. [Elbereth has been weakened as of
  2090. release 2.2 of NetHack. I'm not sure exactly how. But it is definitely
  2091. cheating. My one win was accomplished without using it. -PG]
  2092.  
  2093. EXCALIBUR:
  2094.    In nethack, there is a fairly good chance that any long sword named
  2095. "Excalibur" will become +5 after being dipped in a fountain. This gives a
  2096. very powerful weapon to anyone who can get a long sword; in particular a
  2097. knight. [This has been eliminated in NetHack 2.2. There is still a way
  2098. to get it, but I don't know what it is. -PG]
  2099.  
  2100. CROESUS: 
  2101.    Croesus is the name that the vault guard is expecting. This does not
  2102. help you win the game, but is listed for the curious.
  2103.  
  2104. The rubber chicken attack:
  2105.    If the user is wearing gloves, he may pick up and wield a dead
  2106. cockatrice. Any creature struck by the bird is automatically turned to
  2107. stone. Unfortunately, the cockatrice disintigrates after a period of time,
  2108. but in the mean time it can wreak vast devastation. Be careful! Should
  2109. you fall down while carrying a dead cockatrice, it may accidentally
  2110. touch you!
  2111.  
  2112. Polymorphing wands:
  2113.    One really big spoiler is that should you collect a large number of
  2114. wands (from a wand shop, for example), and put them in a pile, you may 
  2115. polymorph the wands, and try to get wands of wishing. With enough wands and
  2116. charges in your polymorph wand, you can eventually get at least one wand of
  2117. wishing. By wishing for more polymorph wands, you can continue the process,
  2118. acquiring a truly disgusting number of wishes. The best part is that the
  2119. charges are the charges the old wand had, so that one wand may have up
  2120. to 15 wishes!! Clearly this presents a simple, yet powerful (and cheap)
  2121. method of winning. [This is also the only use I have found for the
  2122. fabled "wand of nothing." They have a lot of charges. -PG]
  2123.  
  2124. [Polymorphing your dog:
  2125.    If you want a real powerful pet, you can polymorph your dog, and he
  2126. will remain loyal to you. However, if you have a large dog, he's
  2127. probably just as good without being polymorphed. One warning, though. If
  2128. your dog turns into a dragon, he may still kill you with his breath
  2129. weapon, if you get in his way. -PG]
  2130.  
  2131.  
  2132. Praying for food:
  2133.    One fairly common effect of praying is that the character is surrounded
  2134. by a strong aura. This aura not only heals damage and restores strength, but
  2135. it also raises the user's maximum hp. by 5 AND restores the user's hunger to
  2136. its initial value of 900 turns. This means that, by praying every 300+ turns,
  2137. even if this result only occurs once out of every four tries, the amount 
  2138. of food that needs to be eaten is better than halved. Use the time option
  2139. to keep track of when it is time to pray. 
  2140.  
  2141. Canceling wands of wishing:
  2142.    It is an interesting fact that a wand with zero charges CAN be zapped
  2143. after a long number of tries, after which it can no longer be zapped, and
  2144. has -1 charges. This works for wands of wishing as well. But, a wand of
  2145. cancellation used on another wand makes the wand have 0 charges. Hence, by
  2146. zapping a wand of wishing with a wand of cancellation after the wand is at
  2147. -1 charges gives the user another wish. The user can continue this process
  2148. indefinitely, but it takes a VERY long time. This is really an alternative
  2149. to the polymorphing technique mentioned previously, but can be used by
  2150. earlier versions of hack. [Another "feature" written out of NetHack 2.2.
  2151. When a wand reaches -1 charges, it disintegrates. -PG]
  2152.  
  2153. Iron Balls:
  2154.    The punishment scroll gives you an extremely powerful weapon: the 
  2155. Iron Ball. Although the cockatrice is more powerful, it has the disadvantages
  2156. of disintegrating and of destroying all edible monster. The iron ball,
  2157. although very heavy, can kill many monsters in one swing, and almost every
  2158. monster in two. Try wielding it some time. [The authors neglect to
  2159. mention that you have to get the thing off your ankle. I believe this
  2160. can be done via remove curse, or by praying. I know it can be done by
  2161. polymorphing yourself into a Nymph and using the #remove command. -PG]
  2162.  
  2163. Nurses and the spell of extra-healing:
  2164.    Both of these allow the user to gain an enormous number of hp. The
  2165. spell grants the user hit points each time it is cast, so the user can 
  2166. with this spell increase his maximum hit points as many times as he has the
  2167. mana to do it. [No longer true, since the spell has a finite number of
  2168. uses. -PG]
  2169.    Nurses will cast extra healing on any character they "attack" which 
  2170. is not wearing any armor. This means that by letting a nurse attack you for
  2171. a long period of time, you can gain literally hundreds of hit points.
  2172.  
  2173. Finding the wands of wishing on the 26th level and below:
  2174.    Each level below the 25th has a wand of wishing on it. The wands are
  2175. located beneath a large boulder ("`") which is adjacent to 3 walls. To get
  2176. one of the wands, use a wand of digging to create a hole next to the boulder
  2177. and push the boulder away. Using a wand of striking will work also. [You
  2178. can also remove most of your goodies, and move toward the rock again.
  2179. This will let you crawl under it to get the wand. -PG]
  2180.  
  2181. [The Medusa:
  2182.    A new creature, the medusa, has been added as of NetHack 2.2. She is
  2183. a unique monster, shown by the symbol "8". She guards the lower levels,
  2184. and can be tough to defeat, since looking at her will instantly turn you
  2185. to stone. Two items have been added to help you: the mirror, and the
  2186. blindfold. Using these is the most popular method of destroying the medusa,
  2187. but there are others. -PG]
  2188.  
  2189.  
  2190. Going below the 26th level:
  2191.    To go below the 26th level, you must be confused and read a teleport
  2192. scroll with a ring of teleport control on. This allows you to teleport to a 
  2193. lower level. The dungeon goes down to the 40th level, and none of the levels
  2194. beyond the 26th have stairs going down. [40 is no longer the lowest
  2195. level, and the Wizard isn't always there. -PG]
  2196.  
  2197. Surviving the 40th level.
  2198.    You MUST have fire resistance to enter the 40th level and live. The
  2199. amulet is guarded by a powerful wizard and his hell hound. They are located
  2200. in the center of the level, surrounded by a moat, and an inner wall. 
  2201. It looks like this:
  2202.  
  2203.     ~~~~~~
  2204.     ~----~
  2205.     ~|..|~
  2206.     ~----~
  2207.     ~~~~~~
  2208. The wizard is located in the center. You can levitate over the water, or you
  2209. can destroy a space of water with a wand of fire. Once over the water, use
  2210. a wand of digging to blast open the wall, fight the wizard and retrieve the
  2211. amulet. Now leave the dungeon, and collect as much money as you can.
  2212. You also get bonus points for leaving with a pet. These points are directly
  2213. related to the pet's experience level.
  2214. SHAR_EOF
  2215. #    End of shell archive
  2216. exit 0
  2217. -- 
  2218. Bob Page, U of Lowell CS Dept.  page@swan.ulowell.edu  ulowell!page
  2219. Have five nice days.
  2220.